586a02d220e16a83b7d4ea9ca668cba205ef2829,SecurePlayerSampleApp/app/src/main/java/com/ooyala/sample/players/SecurePlayerPrePersonalizedPlayerActivity.java,SecurePlayerPrePersonalizedPlayerActivity,onCreate,#Bundle#,39
Before Change
EMBED = getIntent().getExtras().getString("embed_code");
// Mandatory - You need to get an OPID for your application. Talk to your CSM or Technical Support for more information
VisualOnConfiguration voOpts = new VisualOnConfiguration.Builder().setSessionId("session").build();
Options options = new Options.Builder().setVisualOnConfiguration(voOpts).build();
//Initialize the player
After Change
// Mandatory - You need to get an OPID for your application (setSessionId)
// and need to reference the version string for your specific SecurePlayer Libraries.
// Talk to your CSM or Technical Support for more information
VisualOnConfiguration voOpts = new VisualOnConfiguration.Builder().setSessionId("session").setVersion("GENERAL_ANDR_VOP_PROB_RC_03_08_02_0000").build();
Options options = new Options.Builder().setVisualOnConfiguration(voOpts).build();
//Initialize the player